home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / Mic-1 v1.0 / Project and Source / Source / mic_global_functions.h < prev    next >
Text File  |  1996-04-08  |  373b  |  17 lines

  1. #ifndef _GLOBAL_FUNCTIONS_
  2. #define _GLOBAL_FUNCTIONS_
  3.  
  4. void Death (short resCode);
  5. void Pause (void);
  6.  
  7. void Beep (void);
  8. short Min (short x, short y);
  9. short Max (short x, short y);
  10.  
  11. void Catenate (Str255 Str1, Str255 Str2);
  12. void CopyString (StringPtr sourceStr, StringPtr destStr);
  13. Boolean EqualStrings (Str255 Str1, Str255 Str2);
  14.  
  15. Boolean CheckForEscapeKey (void);
  16.  
  17. #endif